home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / Chat / ReadMe.txt < prev    next >
Encoding:
Text File  |  2004-10-22  |  1.3 KB  |  29 lines

  1. TCP/IP Chat Demo Application
  2. ----------------------------
  3. This is a simple demonstration of how to use the classes in the
  4. System.Net.Sockets namespace for asynchronous TCP/IP communication. It also
  5. demonstrates using the System.Threading.ThreadPool class to queue worker
  6. threads.
  7.  
  8. The application can act as a client or server instance, and two instances are
  9. required to be running, with one acting as the server.
  10.  
  11. Known Issues
  12. ------------
  13. - Attempting to connect to 127.0.0.1 or localhost can sometimes result in the
  14.   connection failing. To get around this when attempting to connect to a server
  15.   instance running on the local PC, use either the local PCs machine name or the
  16.   IP address returned by Ipconfig.exe.
  17.  
  18. - If the server instance stops listening, the client currently has no way of
  19.   determining this. It will still attempt to send data, and no errors will be
  20.   reported when doing so.
  21.  
  22. - The server doesn't currently support multiple client connections. Although no
  23.   exceptions will be raised, and both clients will be able to send data to the
  24.   server, any data the server sends will only be received by the last client to
  25.   connect.
  26.  
  27. - The send mechanism is rather crude, and simply attempts to send the last line
  28.   of text in the textbox. If the last line is blank then no data is received.
  29.